Tom Rini | 10e4779 | 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 | * (C) Copyright 2002 Wolfgang Grandegger, wg@denx.de. |
| 4 | * |
| 5 | * This driver for AMD PCnet network controllers is derived from the |
| 6 | * Linux driver pcnet32.c written 1996-1999 by Thomas Bogendoerfer. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Marek Vasut | 978733b | 2020-05-17 18:24:24 +0200 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Marek Vasut | cf8ec98 | 2020-05-17 17:43:22 +0200 | [diff] [blame] | 13 | #include <dm.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 14 | #include <malloc.h> |
Marek Vasut | 60675d4 | 2020-05-17 16:16:45 +0200 | [diff] [blame] | 15 | #include <memalign.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 16 | #include <net.h> |
Ben Warren | b794a93 | 2008-08-31 10:08:43 -0700 | [diff] [blame] | 17 | #include <netdev.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 18 | #include <asm/cache.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 19 | #include <asm/io.h> |
| 20 | #include <pci.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 21 | #include <linux/delay.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 22 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 23 | #define PCNET_DEBUG_LEVEL 0 /* 0=off, 1=init, 2=rx/tx */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 24 | |
Wolfgang Denk | 99726cc | 2011-11-05 05:12:58 +0000 | [diff] [blame] | 25 | #define PCNET_DEBUG1(fmt,args...) \ |
| 26 | debug_cond(PCNET_DEBUG_LEVEL > 0, fmt ,##args) |
| 27 | #define PCNET_DEBUG2(fmt,args...) \ |
| 28 | debug_cond(PCNET_DEBUG_LEVEL > 1, fmt ,##args) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 29 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 30 | /* |
| 31 | * Set the number of Tx and Rx buffers, using Log_2(# buffers). |
| 32 | * Reasonable default values are 4 Tx buffers, and 16 Rx buffers. |
| 33 | * That translates to 2 (4 == 2^^2) and 4 (16 == 2^^4). |
| 34 | */ |
| 35 | #define PCNET_LOG_TX_BUFFERS 0 |
| 36 | #define PCNET_LOG_RX_BUFFERS 2 |
| 37 | |
| 38 | #define TX_RING_SIZE (1 << (PCNET_LOG_TX_BUFFERS)) |
| 39 | #define TX_RING_LEN_BITS ((PCNET_LOG_TX_BUFFERS) << 12) |
| 40 | |
| 41 | #define RX_RING_SIZE (1 << (PCNET_LOG_RX_BUFFERS)) |
| 42 | #define RX_RING_LEN_BITS ((PCNET_LOG_RX_BUFFERS) << 4) |
| 43 | |
| 44 | #define PKT_BUF_SZ 1544 |
| 45 | |
| 46 | /* The PCNET Rx and Tx ring descriptors. */ |
| 47 | struct pcnet_rx_head { |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 48 | u32 base; |
| 49 | s16 buf_length; |
| 50 | s16 status; |
| 51 | u32 msg_length; |
| 52 | u32 reserved; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | struct pcnet_tx_head { |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 56 | u32 base; |
| 57 | s16 length; |
| 58 | s16 status; |
| 59 | u32 misc; |
| 60 | u32 reserved; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | /* The PCNET 32-Bit initialization block, described in databook. */ |
| 64 | struct pcnet_init_block { |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 65 | u16 mode; |
| 66 | u16 tlen_rlen; |
| 67 | u8 phys_addr[6]; |
| 68 | u16 reserved; |
| 69 | u32 filter[2]; |
| 70 | /* Receive and transmit ring base, along with extra bits. */ |
| 71 | u32 rx_ring; |
| 72 | u32 tx_ring; |
| 73 | u32 reserved2; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 74 | }; |
| 75 | |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 76 | struct pcnet_uncached_priv { |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 77 | struct pcnet_rx_head rx_ring[RX_RING_SIZE]; |
| 78 | struct pcnet_tx_head tx_ring[TX_RING_SIZE]; |
| 79 | struct pcnet_init_block init_block; |
Marek Vasut | 60675d4 | 2020-05-17 16:16:45 +0200 | [diff] [blame] | 80 | } __aligned(ARCH_DMA_MINALIGN); |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 81 | |
Marek Vasut | b346e1b | 2020-05-17 15:10:41 +0200 | [diff] [blame] | 82 | struct pcnet_priv { |
Marek Vasut | 60675d4 | 2020-05-17 16:16:45 +0200 | [diff] [blame] | 83 | struct pcnet_uncached_priv ucp; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 84 | /* Receive Buffer space */ |
Marek Vasut | 60675d4 | 2020-05-17 16:16:45 +0200 | [diff] [blame] | 85 | unsigned char rx_buf[RX_RING_SIZE][PKT_BUF_SZ + 4]; |
| 86 | struct pcnet_uncached_priv *uc; |
Marek Vasut | cf8ec98 | 2020-05-17 17:43:22 +0200 | [diff] [blame] | 87 | #ifdef CONFIG_DM_ETH |
| 88 | struct udevice *dev; |
| 89 | const char *name; |
| 90 | #else |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 91 | pci_dev_t dev; |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 92 | char *name; |
Marek Vasut | cf8ec98 | 2020-05-17 17:43:22 +0200 | [diff] [blame] | 93 | #endif |
| 94 | void __iomem *iobase; |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 95 | u8 *enetaddr; |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 96 | u16 status; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 97 | int cur_rx; |
| 98 | int cur_tx; |
Marek Vasut | b346e1b | 2020-05-17 15:10:41 +0200 | [diff] [blame] | 99 | }; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 100 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 101 | /* Offsets from base I/O address for WIO mode */ |
| 102 | #define PCNET_RDP 0x10 |
| 103 | #define PCNET_RAP 0x12 |
| 104 | #define PCNET_RESET 0x14 |
| 105 | #define PCNET_BDP 0x16 |
| 106 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 107 | static u16 pcnet_read_csr(struct pcnet_priv *lp, int index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 108 | { |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 109 | writew(index, lp->iobase + PCNET_RAP); |
| 110 | return readw(lp->iobase + PCNET_RDP); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 113 | static void pcnet_write_csr(struct pcnet_priv *lp, int index, u16 val) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 114 | { |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 115 | writew(index, lp->iobase + PCNET_RAP); |
| 116 | writew(val, lp->iobase + PCNET_RDP); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 119 | static u16 pcnet_read_bcr(struct pcnet_priv *lp, int index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 120 | { |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 121 | writew(index, lp->iobase + PCNET_RAP); |
| 122 | return readw(lp->iobase + PCNET_BDP); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 125 | static void pcnet_write_bcr(struct pcnet_priv *lp, int index, u16 val) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 126 | { |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 127 | writew(index, lp->iobase + PCNET_RAP); |
| 128 | writew(val, lp->iobase + PCNET_BDP); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 131 | static void pcnet_reset(struct pcnet_priv *lp) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 132 | { |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 133 | readw(lp->iobase + PCNET_RESET); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 134 | } |
| 135 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 136 | static int pcnet_check(struct pcnet_priv *lp) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 137 | { |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 138 | writew(88, lp->iobase + PCNET_RAP); |
| 139 | return readw(lp->iobase + PCNET_RAP) == 88; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 140 | } |
| 141 | |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 142 | static inline pci_addr_t pcnet_virt_to_mem(struct pcnet_priv *lp, void *addr) |
Daniel Schwierzeck | 9b3e6c6 | 2016-01-12 21:48:24 +0100 | [diff] [blame] | 143 | { |
Daniel Schwierzeck | 9b3e6c6 | 2016-01-12 21:48:24 +0100 | [diff] [blame] | 144 | void *virt_addr = addr; |
| 145 | |
Marek Vasut | cf8ec98 | 2020-05-17 17:43:22 +0200 | [diff] [blame] | 146 | #ifdef CONFIG_DM_ETH |
| 147 | return dm_pci_virt_to_mem(lp->dev, virt_addr); |
| 148 | #else |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 149 | return pci_virt_to_mem(lp->dev, virt_addr); |
Marek Vasut | cf8ec98 | 2020-05-17 17:43:22 +0200 | [diff] [blame] | 150 | #endif |
Daniel Schwierzeck | 9b3e6c6 | 2016-01-12 21:48:24 +0100 | [diff] [blame] | 151 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 152 | |
| 153 | static struct pci_device_id supported[] = { |
Marek Vasut | e2ea361 | 2020-05-17 17:33:17 +0200 | [diff] [blame] | 154 | { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE) }, |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 155 | {} |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 156 | }; |
| 157 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 158 | static int pcnet_probe_common(struct pcnet_priv *lp) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 159 | { |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 160 | int chip_version; |
| 161 | char *chipname; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 162 | int i; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 163 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 164 | /* Reset the PCnet controller */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 165 | pcnet_reset(lp); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 166 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 167 | /* Check if register access is working */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 168 | if (pcnet_read_csr(lp, 0) != 4 || !pcnet_check(lp)) { |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 169 | printf("%s: CSR register access check failed\n", lp->name); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 170 | return -1; |
| 171 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 172 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 173 | /* Identify the chip */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 174 | chip_version = pcnet_read_csr(lp, 88) | (pcnet_read_csr(lp, 89) << 16); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 175 | if ((chip_version & 0xfff) != 0x003) |
| 176 | return -1; |
| 177 | chip_version = (chip_version >> 12) & 0xffff; |
| 178 | switch (chip_version) { |
| 179 | case 0x2621: |
| 180 | chipname = "PCnet/PCI II 79C970A"; /* PCI */ |
| 181 | break; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 182 | case 0x2625: |
| 183 | chipname = "PCnet/FAST III 79C973"; /* PCI */ |
| 184 | break; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 185 | case 0x2627: |
| 186 | chipname = "PCnet/FAST III 79C975"; /* PCI */ |
| 187 | break; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 188 | default: |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 189 | printf("%s: PCnet version %#x not supported\n", |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 190 | lp->name, chip_version); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 191 | return -1; |
| 192 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 193 | |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 194 | PCNET_DEBUG1("AMD %s\n", chipname); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 195 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 196 | /* |
| 197 | * In most chips, after a chip reset, the ethernet address is read from |
| 198 | * the station address PROM at the base address and programmed into the |
| 199 | * "Physical Address Registers" CSR12-14. |
| 200 | */ |
| 201 | for (i = 0; i < 3; i++) { |
| 202 | unsigned int val; |
| 203 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 204 | val = pcnet_read_csr(lp, i + 12) & 0x0ffff; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 205 | /* There may be endianness issues here. */ |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 206 | lp->enetaddr[2 * i] = val & 0x0ff; |
| 207 | lp->enetaddr[2 * i + 1] = (val >> 8) & 0x0ff; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 208 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 209 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 210 | return 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 211 | } |
| 212 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 213 | static int pcnet_init_common(struct pcnet_priv *lp) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 214 | { |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 215 | struct pcnet_uncached_priv *uc; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 216 | int i, val; |
Paul Burton | ed22875 | 2016-05-26 14:49:35 +0100 | [diff] [blame] | 217 | unsigned long addr; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 218 | |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 219 | PCNET_DEBUG1("%s: %s...\n", lp->name, __func__); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 220 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 221 | /* Switch pcnet to 32bit mode */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 222 | pcnet_write_bcr(lp, 20, 2); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 223 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 224 | /* Set/reset autoselect bit */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 225 | val = pcnet_read_bcr(lp, 2) & ~2; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 226 | val |= 2; |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 227 | pcnet_write_bcr(lp, 2, val); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 228 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 229 | /* Enable auto negotiate, setup, disable fd */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 230 | val = pcnet_read_bcr(lp, 32) & ~0x98; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 231 | val |= 0x20; |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 232 | pcnet_write_bcr(lp, 32, val); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 233 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 234 | /* |
Paul Burton | 03261c0 | 2013-11-08 11:18:46 +0000 | [diff] [blame] | 235 | * Enable NOUFLO on supported controllers, with the transmit |
| 236 | * start point set to the full packet. This will cause entire |
| 237 | * packets to be buffered by the ethernet controller before |
| 238 | * transmission, eliminating underflows which are common on |
| 239 | * slower devices. Controllers which do not support NOUFLO will |
| 240 | * simply be left with a larger transmit FIFO threshold. |
| 241 | */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 242 | val = pcnet_read_bcr(lp, 18); |
Paul Burton | 03261c0 | 2013-11-08 11:18:46 +0000 | [diff] [blame] | 243 | val |= 1 << 11; |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 244 | pcnet_write_bcr(lp, 18, val); |
| 245 | val = pcnet_read_csr(lp, 80); |
Paul Burton | 03261c0 | 2013-11-08 11:18:46 +0000 | [diff] [blame] | 246 | val |= 0x3 << 10; |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 247 | pcnet_write_csr(lp, 80, val); |
Paul Burton | 03261c0 | 2013-11-08 11:18:46 +0000 | [diff] [blame] | 248 | |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 249 | uc = lp->uc; |
| 250 | |
| 251 | uc->init_block.mode = cpu_to_le16(0x0000); |
| 252 | uc->init_block.filter[0] = 0x00000000; |
| 253 | uc->init_block.filter[1] = 0x00000000; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 254 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 255 | /* |
| 256 | * Initialize the Rx ring. |
| 257 | */ |
| 258 | lp->cur_rx = 0; |
| 259 | for (i = 0; i < RX_RING_SIZE; i++) { |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 260 | addr = pcnet_virt_to_mem(lp, lp->rx_buf[i]); |
Daniel Schwierzeck | 9b3e6c6 | 2016-01-12 21:48:24 +0100 | [diff] [blame] | 261 | uc->rx_ring[i].base = cpu_to_le32(addr); |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 262 | uc->rx_ring[i].buf_length = cpu_to_le16(-PKT_BUF_SZ); |
| 263 | uc->rx_ring[i].status = cpu_to_le16(0x8000); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 264 | PCNET_DEBUG1 |
| 265 | ("Rx%d: base=0x%x buf_length=0x%hx status=0x%hx\n", i, |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 266 | uc->rx_ring[i].base, uc->rx_ring[i].buf_length, |
| 267 | uc->rx_ring[i].status); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 268 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 269 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 270 | /* |
| 271 | * Initialize the Tx ring. The Tx buffer address is filled in as |
| 272 | * needed, but we do need to clear the upper ownership bit. |
| 273 | */ |
| 274 | lp->cur_tx = 0; |
| 275 | for (i = 0; i < TX_RING_SIZE; i++) { |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 276 | uc->tx_ring[i].base = 0; |
| 277 | uc->tx_ring[i].status = 0; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 278 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 279 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 280 | /* |
| 281 | * Setup Init Block. |
| 282 | */ |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 283 | PCNET_DEBUG1("Init block at 0x%p: MAC", &lp->uc->init_block); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 284 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 285 | for (i = 0; i < 6; i++) { |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 286 | lp->uc->init_block.phys_addr[i] = lp->enetaddr[i]; |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 287 | PCNET_DEBUG1(" %02x", lp->uc->init_block.phys_addr[i]); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 288 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 289 | |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 290 | uc->init_block.tlen_rlen = cpu_to_le16(TX_RING_LEN_BITS | |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 291 | RX_RING_LEN_BITS); |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 292 | addr = pcnet_virt_to_mem(lp, uc->rx_ring); |
Daniel Schwierzeck | 9b3e6c6 | 2016-01-12 21:48:24 +0100 | [diff] [blame] | 293 | uc->init_block.rx_ring = cpu_to_le32(addr); |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 294 | addr = pcnet_virt_to_mem(lp, uc->tx_ring); |
Daniel Schwierzeck | 9b3e6c6 | 2016-01-12 21:48:24 +0100 | [diff] [blame] | 295 | uc->init_block.tx_ring = cpu_to_le32(addr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 296 | |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 297 | PCNET_DEBUG1("\ntlen_rlen=0x%x rx_ring=0x%x tx_ring=0x%x\n", |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 298 | uc->init_block.tlen_rlen, |
| 299 | uc->init_block.rx_ring, uc->init_block.tx_ring); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 300 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 301 | /* |
| 302 | * Tell the controller where the Init Block is located. |
| 303 | */ |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 304 | barrier(); |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 305 | addr = pcnet_virt_to_mem(lp, &lp->uc->init_block); |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 306 | pcnet_write_csr(lp, 1, addr & 0xffff); |
| 307 | pcnet_write_csr(lp, 2, (addr >> 16) & 0xffff); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 308 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 309 | pcnet_write_csr(lp, 4, 0x0915); |
| 310 | pcnet_write_csr(lp, 0, 0x0001); /* start */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 311 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 312 | /* Wait for Init Done bit */ |
| 313 | for (i = 10000; i > 0; i--) { |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 314 | if (pcnet_read_csr(lp, 0) & 0x0100) |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 315 | break; |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 316 | udelay(10); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 317 | } |
| 318 | if (i <= 0) { |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 319 | printf("%s: TIMEOUT: controller init failed\n", lp->name); |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 320 | pcnet_reset(lp); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 321 | return -1; |
| 322 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 323 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 324 | /* |
| 325 | * Finally start network controller operation. |
| 326 | */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 327 | pcnet_write_csr(lp, 0, 0x0002); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 328 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 329 | return 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 330 | } |
| 331 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 332 | static int pcnet_send_common(struct pcnet_priv *lp, void *packet, int pkt_len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 333 | { |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 334 | int i, status; |
Daniel Schwierzeck | 9b3e6c6 | 2016-01-12 21:48:24 +0100 | [diff] [blame] | 335 | u32 addr; |
Paul Burton | 5250592 | 2014-04-07 16:41:46 +0100 | [diff] [blame] | 336 | struct pcnet_tx_head *entry = &lp->uc->tx_ring[lp->cur_tx]; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 337 | |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 338 | PCNET_DEBUG2("Tx%d: %d bytes from 0x%p ", lp->cur_tx, pkt_len, |
| 339 | packet); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 340 | |
Paul Burton | 5edb7d8 | 2013-11-08 11:18:45 +0000 | [diff] [blame] | 341 | flush_dcache_range((unsigned long)packet, |
| 342 | (unsigned long)packet + pkt_len); |
| 343 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 344 | /* Wait for completion by testing the OWN bit */ |
| 345 | for (i = 1000; i > 0; i--) { |
Paul Burton | 14e4740 | 2014-04-07 16:41:48 +0100 | [diff] [blame] | 346 | status = readw(&entry->status); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 347 | if ((status & 0x8000) == 0) |
| 348 | break; |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 349 | udelay(100); |
| 350 | PCNET_DEBUG2("."); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 351 | } |
| 352 | if (i <= 0) { |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 353 | printf("%s: TIMEOUT: Tx%d failed (status = 0x%x)\n", |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 354 | lp->name, lp->cur_tx, status); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 355 | pkt_len = 0; |
| 356 | goto failure; |
| 357 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 358 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 359 | /* |
| 360 | * Setup Tx ring. Caution: the write order is important here, |
| 361 | * set the status with the "ownership" bits last. |
| 362 | */ |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 363 | addr = pcnet_virt_to_mem(lp, packet); |
Paul Burton | 14e4740 | 2014-04-07 16:41:48 +0100 | [diff] [blame] | 364 | writew(-pkt_len, &entry->length); |
| 365 | writel(0, &entry->misc); |
Daniel Schwierzeck | 9b3e6c6 | 2016-01-12 21:48:24 +0100 | [diff] [blame] | 366 | writel(addr, &entry->base); |
Paul Burton | 14e4740 | 2014-04-07 16:41:48 +0100 | [diff] [blame] | 367 | writew(0x8300, &entry->status); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 368 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 369 | /* Trigger an immediate send poll. */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 370 | pcnet_write_csr(lp, 0, 0x0008); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 371 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 372 | failure: |
| 373 | if (++lp->cur_tx >= TX_RING_SIZE) |
| 374 | lp->cur_tx = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 375 | |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 376 | PCNET_DEBUG2("done\n"); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 377 | return pkt_len; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 378 | } |
| 379 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 380 | static int pcnet_recv_common(struct pcnet_priv *lp, unsigned char **bufp) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 381 | { |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 382 | struct pcnet_rx_head *entry; |
Paul Burton | 7f3c38e | 2014-04-07 16:41:47 +0100 | [diff] [blame] | 383 | unsigned char *buf; |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 384 | int pkt_len = 0; |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 385 | u16 err_status; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 386 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 387 | entry = &lp->uc->rx_ring[lp->cur_rx]; |
| 388 | /* |
| 389 | * If we own the next entry, it's a new packet. Send it up. |
| 390 | */ |
| 391 | lp->status = readw(&entry->status); |
| 392 | if ((lp->status & 0x8000) != 0) |
| 393 | return 0; |
| 394 | err_status = lp->status >> 8; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 395 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 396 | if (err_status != 0x03) { /* There was an error. */ |
| 397 | printf("%s: Rx%d", lp->name, lp->cur_rx); |
| 398 | PCNET_DEBUG1(" (status=0x%x)", err_status); |
| 399 | if (err_status & 0x20) |
| 400 | printf(" Frame"); |
| 401 | if (err_status & 0x10) |
| 402 | printf(" Overflow"); |
| 403 | if (err_status & 0x08) |
| 404 | printf(" CRC"); |
| 405 | if (err_status & 0x04) |
| 406 | printf(" Fifo"); |
| 407 | printf(" Error\n"); |
| 408 | lp->status &= 0x03ff; |
| 409 | return 0; |
| 410 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 411 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 412 | pkt_len = (readl(&entry->msg_length) & 0xfff) - 4; |
| 413 | if (pkt_len < 60) { |
| 414 | printf("%s: Rx%d: invalid packet length %d\n", |
| 415 | lp->name, lp->cur_rx, pkt_len); |
| 416 | return 0; |
| 417 | } |
Paul Burton | 14e4740 | 2014-04-07 16:41:48 +0100 | [diff] [blame] | 418 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 419 | *bufp = lp->rx_buf[lp->cur_rx]; |
| 420 | invalidate_dcache_range((unsigned long)*bufp, |
| 421 | (unsigned long)*bufp + pkt_len); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 422 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 423 | PCNET_DEBUG2("Rx%d: %d bytes from 0x%p\n", |
| 424 | lp->cur_rx, pkt_len, buf); |
| 425 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 426 | return pkt_len; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 429 | static void pcnet_free_pkt_common(struct pcnet_priv *lp, unsigned int len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 430 | { |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 431 | struct pcnet_rx_head *entry; |
| 432 | |
| 433 | entry = &lp->uc->rx_ring[lp->cur_rx]; |
| 434 | |
| 435 | lp->status |= 0x8000; |
| 436 | writew(lp->status, &entry->status); |
| 437 | |
| 438 | if (++lp->cur_rx >= RX_RING_SIZE) |
| 439 | lp->cur_rx = 0; |
| 440 | } |
| 441 | |
| 442 | static void pcnet_halt_common(struct pcnet_priv *lp) |
| 443 | { |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 444 | int i; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 445 | |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 446 | PCNET_DEBUG1("%s: %s...\n", lp->name, __func__); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 447 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 448 | /* Reset the PCnet controller */ |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 449 | pcnet_reset(lp); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 450 | |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 451 | /* Wait for Stop bit */ |
| 452 | for (i = 1000; i > 0; i--) { |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 453 | if (pcnet_read_csr(lp, 0) & 0x4) |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 454 | break; |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 455 | udelay(10); |
Wolfgang Denk | 3915831 | 2008-04-24 23:44:26 +0200 | [diff] [blame] | 456 | } |
Paul Burton | 70ab8c0 | 2013-11-08 11:18:43 +0000 | [diff] [blame] | 457 | if (i <= 0) |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 458 | printf("%s: TIMEOUT: controller reset failed\n", lp->name); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 459 | } |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 460 | |
Marek Vasut | cf8ec98 | 2020-05-17 17:43:22 +0200 | [diff] [blame] | 461 | #ifndef CONFIG_DM_ETH |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame^] | 462 | static int pcnet_init(struct eth_device *dev, struct bd_info *bis) |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 463 | { |
| 464 | struct pcnet_priv *lp = dev->priv; |
| 465 | |
| 466 | return pcnet_init_common(lp); |
| 467 | } |
| 468 | |
| 469 | static int pcnet_send(struct eth_device *dev, void *packet, int pkt_len) |
| 470 | { |
| 471 | struct pcnet_priv *lp = dev->priv; |
| 472 | |
| 473 | return pcnet_send_common(lp, packet, pkt_len); |
| 474 | } |
| 475 | |
| 476 | static int pcnet_recv(struct eth_device *dev) |
| 477 | { |
| 478 | struct pcnet_priv *lp = dev->priv; |
| 479 | uchar *packet; |
| 480 | int ret; |
| 481 | |
| 482 | ret = pcnet_recv_common(lp, &packet); |
| 483 | if (ret > 0) |
| 484 | net_process_received_packet(packet, ret); |
| 485 | if (ret) |
| 486 | pcnet_free_pkt_common(lp, ret); |
| 487 | |
| 488 | return ret; |
| 489 | } |
| 490 | |
| 491 | static void pcnet_halt(struct eth_device *dev) |
| 492 | { |
| 493 | struct pcnet_priv *lp = dev->priv; |
| 494 | |
| 495 | pcnet_halt_common(lp); |
| 496 | } |
| 497 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame^] | 498 | int pcnet_initialize(struct bd_info *bis) |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 499 | { |
| 500 | pci_dev_t devbusfn; |
| 501 | struct eth_device *dev; |
Marek Vasut | f387771 | 2020-05-17 16:47:07 +0200 | [diff] [blame] | 502 | struct pcnet_priv *lp; |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 503 | u16 command, status; |
| 504 | int dev_nr = 0; |
| 505 | u32 bar; |
| 506 | |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 507 | PCNET_DEBUG1("\n%s...\n", __func__); |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 508 | |
| 509 | for (dev_nr = 0; ; dev_nr++) { |
| 510 | /* |
| 511 | * Find the PCnet PCI device(s). |
| 512 | */ |
| 513 | devbusfn = pci_find_devices(supported, dev_nr); |
| 514 | if (devbusfn < 0) |
| 515 | break; |
| 516 | |
| 517 | /* |
| 518 | * Allocate and pre-fill the device structure. |
| 519 | */ |
| 520 | dev = calloc(1, sizeof(*dev)); |
| 521 | if (!dev) { |
| 522 | printf("pcnet: Can not allocate memory\n"); |
| 523 | break; |
| 524 | } |
| 525 | |
| 526 | /* |
| 527 | * We only maintain one structure because the drivers will |
| 528 | * never be used concurrently. In 32bit mode the RX and TX |
| 529 | * ring entries must be aligned on 16-byte boundaries. |
| 530 | */ |
Marek Vasut | f387771 | 2020-05-17 16:47:07 +0200 | [diff] [blame] | 531 | lp = malloc_cache_aligned(sizeof(*lp)); |
| 532 | lp->uc = map_physmem((phys_addr_t)&lp->ucp, |
| 533 | sizeof(lp->ucp), MAP_NOCACHE); |
Marek Vasut | 2b1c26a | 2020-05-17 16:31:04 +0200 | [diff] [blame] | 534 | lp->dev = devbusfn; |
Marek Vasut | f387771 | 2020-05-17 16:47:07 +0200 | [diff] [blame] | 535 | flush_dcache_range((unsigned long)lp, |
| 536 | (unsigned long)lp + sizeof(*lp)); |
| 537 | dev->priv = lp; |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 538 | sprintf(dev->name, "pcnet#%d", dev_nr); |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 539 | lp->name = dev->name; |
| 540 | lp->enetaddr = dev->enetaddr; |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 541 | |
| 542 | /* |
| 543 | * Setup the PCI device. |
| 544 | */ |
| 545 | pci_read_config_dword(devbusfn, PCI_BASE_ADDRESS_1, &bar); |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 546 | lp->iobase = (void *)(pci_mem_to_phys(devbusfn, bar) & ~0xf); |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 547 | |
Marek Vasut | f7377ad | 2020-05-17 17:00:42 +0200 | [diff] [blame] | 548 | PCNET_DEBUG1("%s: devbusfn=0x%x iobase=0x%p: ", |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 549 | lp->name, devbusfn, lp->iobase); |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 550 | |
| 551 | command = PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; |
| 552 | pci_write_config_word(devbusfn, PCI_COMMAND, command); |
| 553 | pci_read_config_word(devbusfn, PCI_COMMAND, &status); |
| 554 | if ((status & command) != command) { |
| 555 | printf("%s: Couldn't enable IO access or Bus Mastering\n", |
Marek Vasut | 5cfe7be | 2020-05-17 17:04:19 +0200 | [diff] [blame] | 556 | lp->name); |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 557 | free(dev); |
| 558 | continue; |
| 559 | } |
| 560 | |
| 561 | pci_write_config_byte(devbusfn, PCI_LATENCY_TIMER, 0x40); |
| 562 | |
| 563 | /* |
| 564 | * Probe the PCnet chip. |
| 565 | */ |
Marek Vasut | 03304cc | 2020-05-17 17:28:31 +0200 | [diff] [blame] | 566 | if (pcnet_probe_common(lp) < 0) { |
Marek Vasut | 2ba0a68 | 2020-05-17 16:31:41 +0200 | [diff] [blame] | 567 | free(dev); |
| 568 | continue; |
| 569 | } |
| 570 | |
| 571 | /* |
| 572 | * Setup device structure and register the driver. |
| 573 | */ |
| 574 | dev->init = pcnet_init; |
| 575 | dev->halt = pcnet_halt; |
| 576 | dev->send = pcnet_send; |
| 577 | dev->recv = pcnet_recv; |
| 578 | |
| 579 | eth_register(dev); |
| 580 | } |
| 581 | |
| 582 | udelay(10 * 1000); |
| 583 | |
| 584 | return dev_nr; |
| 585 | } |
Marek Vasut | cf8ec98 | 2020-05-17 17:43:22 +0200 | [diff] [blame] | 586 | #else /* DM_ETH */ |
| 587 | static int pcnet_start(struct udevice *dev) |
| 588 | { |
| 589 | struct eth_pdata *plat = dev_get_platdata(dev); |
| 590 | struct pcnet_priv *priv = dev_get_priv(dev); |
| 591 | |
| 592 | memcpy(priv->enetaddr, plat->enetaddr, sizeof(plat->enetaddr)); |
| 593 | |
| 594 | return pcnet_init_common(priv); |
| 595 | } |
| 596 | |
| 597 | static void pcnet_stop(struct udevice *dev) |
| 598 | { |
| 599 | struct pcnet_priv *priv = dev_get_priv(dev); |
| 600 | |
| 601 | pcnet_halt_common(priv); |
| 602 | } |
| 603 | |
| 604 | static int pcnet_send(struct udevice *dev, void *packet, int length) |
| 605 | { |
| 606 | struct pcnet_priv *priv = dev_get_priv(dev); |
| 607 | int ret; |
| 608 | |
| 609 | ret = pcnet_send_common(priv, packet, length); |
| 610 | |
| 611 | return ret ? 0 : -ETIMEDOUT; |
| 612 | } |
| 613 | |
| 614 | static int pcnet_recv(struct udevice *dev, int flags, uchar **packetp) |
| 615 | { |
| 616 | struct pcnet_priv *priv = dev_get_priv(dev); |
| 617 | |
| 618 | return pcnet_recv_common(priv, packetp); |
| 619 | } |
| 620 | |
| 621 | static int pcnet_free_pkt(struct udevice *dev, uchar *packet, int length) |
| 622 | { |
| 623 | struct pcnet_priv *priv = dev_get_priv(dev); |
| 624 | |
| 625 | pcnet_free_pkt_common(priv, length); |
| 626 | |
| 627 | return 0; |
| 628 | } |
| 629 | |
| 630 | static int pcnet_bind(struct udevice *dev) |
| 631 | { |
| 632 | static int card_number; |
| 633 | char name[16]; |
| 634 | |
| 635 | sprintf(name, "pcnet#%u", card_number++); |
| 636 | |
| 637 | return device_set_name(dev, name); |
| 638 | } |
| 639 | |
| 640 | static int pcnet_probe(struct udevice *dev) |
| 641 | { |
| 642 | struct eth_pdata *plat = dev_get_platdata(dev); |
| 643 | struct pcnet_priv *lp = dev_get_priv(dev); |
| 644 | u16 command, status; |
| 645 | u32 iobase; |
| 646 | int ret; |
| 647 | |
| 648 | dm_pci_read_config32(dev, PCI_BASE_ADDRESS_1, &iobase); |
| 649 | iobase &= ~0xf; |
| 650 | |
| 651 | lp->uc = map_physmem((phys_addr_t)&lp->ucp, |
| 652 | sizeof(lp->ucp), MAP_NOCACHE); |
| 653 | lp->dev = dev; |
| 654 | lp->name = dev->name; |
| 655 | lp->enetaddr = plat->enetaddr; |
| 656 | lp->iobase = (void *)dm_pci_mem_to_phys(dev, iobase); |
| 657 | |
| 658 | flush_dcache_range((unsigned long)lp, |
| 659 | (unsigned long)lp + sizeof(*lp)); |
| 660 | |
| 661 | command = PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; |
| 662 | dm_pci_write_config16(dev, PCI_COMMAND, command); |
| 663 | dm_pci_read_config16(dev, PCI_COMMAND, &status); |
| 664 | if ((status & command) != command) { |
| 665 | printf("%s: Couldn't enable IO access or Bus Mastering\n", |
| 666 | lp->name); |
| 667 | return -EINVAL; |
| 668 | } |
| 669 | |
| 670 | dm_pci_write_config8(dev, PCI_LATENCY_TIMER, 0x20); |
| 671 | |
| 672 | ret = pcnet_probe_common(lp); |
| 673 | if (ret) |
| 674 | return ret; |
| 675 | |
| 676 | return 0; |
| 677 | } |
| 678 | |
| 679 | static const struct eth_ops pcnet_ops = { |
| 680 | .start = pcnet_start, |
| 681 | .send = pcnet_send, |
| 682 | .recv = pcnet_recv, |
| 683 | .stop = pcnet_stop, |
| 684 | .free_pkt = pcnet_free_pkt, |
| 685 | }; |
| 686 | |
| 687 | U_BOOT_DRIVER(eth_pcnet) = { |
| 688 | .name = "eth_pcnet", |
| 689 | .id = UCLASS_ETH, |
| 690 | .bind = pcnet_bind, |
| 691 | .probe = pcnet_probe, |
| 692 | .ops = &pcnet_ops, |
| 693 | .priv_auto_alloc_size = sizeof(struct pcnet_priv), |
| 694 | .platdata_auto_alloc_size = sizeof(struct eth_pdata), |
| 695 | .flags = DM_UC_FLAG_ALLOC_PRIV_DMA, |
| 696 | }; |
| 697 | |
| 698 | U_BOOT_PCI_DEVICE(eth_pcnet, supported); |
| 699 | #endif |