xgmac.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. /*
  2. * QEMU model of XGMAC Ethernet.
  3. *
  4. * derived from the Xilinx AXI-Ethernet by Edgar E. Iglesias.
  5. *
  6. * Copyright (c) 2011 Calxeda, Inc.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  21. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include "sysbus.h"
  27. #include "qemu-char.h"
  28. #include "qemu-log.h"
  29. #include "net.h"
  30. #include "net/checksum.h"
  31. #ifdef DEBUG_XGMAC
  32. #define DEBUGF_BRK(message, args...) do { \
  33. fprintf(stderr, (message), ## args); \
  34. } while (0)
  35. #else
  36. #define DEBUGF_BRK(message, args...) do { } while (0)
  37. #endif
  38. #define XGMAC_CONTROL 0x00000000 /* MAC Configuration */
  39. #define XGMAC_FRAME_FILTER 0x00000001 /* MAC Frame Filter */
  40. #define XGMAC_FLOW_CTRL 0x00000006 /* MAC Flow Control */
  41. #define XGMAC_VLAN_TAG 0x00000007 /* VLAN Tags */
  42. #define XGMAC_VERSION 0x00000008 /* Version */
  43. /* VLAN tag for insertion or replacement into tx frames */
  44. #define XGMAC_VLAN_INCL 0x00000009
  45. #define XGMAC_LPI_CTRL 0x0000000a /* LPI Control and Status */
  46. #define XGMAC_LPI_TIMER 0x0000000b /* LPI Timers Control */
  47. #define XGMAC_TX_PACE 0x0000000c /* Transmit Pace and Stretch */
  48. #define XGMAC_VLAN_HASH 0x0000000d /* VLAN Hash Table */
  49. #define XGMAC_DEBUG 0x0000000e /* Debug */
  50. #define XGMAC_INT_STATUS 0x0000000f /* Interrupt and Control */
  51. /* HASH table registers */
  52. #define XGMAC_HASH(n) ((0x00000300/4) + (n))
  53. #define XGMAC_NUM_HASH 16
  54. /* Operation Mode */
  55. #define XGMAC_OPMODE (0x00000400/4)
  56. /* Remote Wake-Up Frame Filter */
  57. #define XGMAC_REMOTE_WAKE (0x00000700/4)
  58. /* PMT Control and Status */
  59. #define XGMAC_PMT (0x00000704/4)
  60. #define XGMAC_ADDR_HIGH(reg) (0x00000010+((reg) * 2))
  61. #define XGMAC_ADDR_LOW(reg) (0x00000011+((reg) * 2))
  62. #define DMA_BUS_MODE 0x000003c0 /* Bus Mode */
  63. #define DMA_XMT_POLL_DEMAND 0x000003c1 /* Transmit Poll Demand */
  64. #define DMA_RCV_POLL_DEMAND 0x000003c2 /* Received Poll Demand */
  65. #define DMA_RCV_BASE_ADDR 0x000003c3 /* Receive List Base */
  66. #define DMA_TX_BASE_ADDR 0x000003c4 /* Transmit List Base */
  67. #define DMA_STATUS 0x000003c5 /* Status Register */
  68. #define DMA_CONTROL 0x000003c6 /* Ctrl (Operational Mode) */
  69. #define DMA_INTR_ENA 0x000003c7 /* Interrupt Enable */
  70. #define DMA_MISSED_FRAME_CTR 0x000003c8 /* Missed Frame Counter */
  71. /* Receive Interrupt Watchdog Timer */
  72. #define DMA_RI_WATCHDOG_TIMER 0x000003c9
  73. #define DMA_AXI_BUS 0x000003ca /* AXI Bus Mode */
  74. #define DMA_AXI_STATUS 0x000003cb /* AXI Status */
  75. #define DMA_CUR_TX_DESC_ADDR 0x000003d2 /* Current Host Tx Descriptor */
  76. #define DMA_CUR_RX_DESC_ADDR 0x000003d3 /* Current Host Rx Descriptor */
  77. #define DMA_CUR_TX_BUF_ADDR 0x000003d4 /* Current Host Tx Buffer */
  78. #define DMA_CUR_RX_BUF_ADDR 0x000003d5 /* Current Host Rx Buffer */
  79. #define DMA_HW_FEATURE 0x000003d6 /* Enabled Hardware Features */
  80. /* DMA Status register defines */
  81. #define DMA_STATUS_GMI 0x08000000 /* MMC interrupt */
  82. #define DMA_STATUS_GLI 0x04000000 /* GMAC Line interface int */
  83. #define DMA_STATUS_EB_MASK 0x00380000 /* Error Bits Mask */
  84. #define DMA_STATUS_EB_TX_ABORT 0x00080000 /* Error Bits - TX Abort */
  85. #define DMA_STATUS_EB_RX_ABORT 0x00100000 /* Error Bits - RX Abort */
  86. #define DMA_STATUS_TS_MASK 0x00700000 /* Transmit Process State */
  87. #define DMA_STATUS_TS_SHIFT 20
  88. #define DMA_STATUS_RS_MASK 0x000e0000 /* Receive Process State */
  89. #define DMA_STATUS_RS_SHIFT 17
  90. #define DMA_STATUS_NIS 0x00010000 /* Normal Interrupt Summary */
  91. #define DMA_STATUS_AIS 0x00008000 /* Abnormal Interrupt Summary */
  92. #define DMA_STATUS_ERI 0x00004000 /* Early Receive Interrupt */
  93. #define DMA_STATUS_FBI 0x00002000 /* Fatal Bus Error Interrupt */
  94. #define DMA_STATUS_ETI 0x00000400 /* Early Transmit Interrupt */
  95. #define DMA_STATUS_RWT 0x00000200 /* Receive Watchdog Timeout */
  96. #define DMA_STATUS_RPS 0x00000100 /* Receive Process Stopped */
  97. #define DMA_STATUS_RU 0x00000080 /* Receive Buffer Unavailable */
  98. #define DMA_STATUS_RI 0x00000040 /* Receive Interrupt */
  99. #define DMA_STATUS_UNF 0x00000020 /* Transmit Underflow */
  100. #define DMA_STATUS_OVF 0x00000010 /* Receive Overflow */
  101. #define DMA_STATUS_TJT 0x00000008 /* Transmit Jabber Timeout */
  102. #define DMA_STATUS_TU 0x00000004 /* Transmit Buffer Unavailable */
  103. #define DMA_STATUS_TPS 0x00000002 /* Transmit Process Stopped */
  104. #define DMA_STATUS_TI 0x00000001 /* Transmit Interrupt */
  105. /* DMA Control register defines */
  106. #define DMA_CONTROL_ST 0x00002000 /* Start/Stop Transmission */
  107. #define DMA_CONTROL_SR 0x00000002 /* Start/Stop Receive */
  108. #define DMA_CONTROL_DFF 0x01000000 /* Disable flush of rx frames */
  109. struct desc {
  110. uint32_t ctl_stat;
  111. uint16_t buffer1_size;
  112. uint16_t buffer2_size;
  113. uint32_t buffer1_addr;
  114. uint32_t buffer2_addr;
  115. uint32_t ext_stat;
  116. uint32_t res[3];
  117. };
  118. #define R_MAX 0x400
  119. typedef struct RxTxStats {
  120. uint64_t rx_bytes;
  121. uint64_t tx_bytes;
  122. uint64_t rx;
  123. uint64_t rx_bcast;
  124. uint64_t rx_mcast;
  125. } RxTxStats;
  126. typedef struct XgmacState {
  127. SysBusDevice busdev;
  128. MemoryRegion iomem;
  129. qemu_irq sbd_irq;
  130. qemu_irq pmt_irq;
  131. qemu_irq mci_irq;
  132. NICState *nic;
  133. NICConf conf;
  134. struct RxTxStats stats;
  135. uint32_t regs[R_MAX];
  136. } XgmacState;
  137. const VMStateDescription vmstate_rxtx_stats = {
  138. .name = "xgmac_stats",
  139. .version_id = 1,
  140. .minimum_version_id = 1,
  141. .fields = (VMStateField[]) {
  142. VMSTATE_UINT64(rx_bytes, RxTxStats),
  143. VMSTATE_UINT64(tx_bytes, RxTxStats),
  144. VMSTATE_UINT64(rx, RxTxStats),
  145. VMSTATE_UINT64(rx_bcast, RxTxStats),
  146. VMSTATE_UINT64(rx_mcast, RxTxStats),
  147. VMSTATE_END_OF_LIST()
  148. }
  149. };
  150. static const VMStateDescription vmstate_xgmac = {
  151. .name = "xgmac",
  152. .version_id = 1,
  153. .minimum_version_id = 1,
  154. .fields = (VMStateField[]) {
  155. VMSTATE_STRUCT(stats, XgmacState, 0, vmstate_rxtx_stats, RxTxStats),
  156. VMSTATE_UINT32_ARRAY(regs, XgmacState, R_MAX),
  157. VMSTATE_END_OF_LIST()
  158. }
  159. };
  160. static void xgmac_read_desc(struct XgmacState *s, struct desc *d, int rx)
  161. {
  162. uint32_t addr = rx ? s->regs[DMA_CUR_RX_DESC_ADDR] :
  163. s->regs[DMA_CUR_TX_DESC_ADDR];
  164. cpu_physical_memory_read(addr, d, sizeof(*d));
  165. }
  166. static void xgmac_write_desc(struct XgmacState *s, struct desc *d, int rx)
  167. {
  168. int reg = rx ? DMA_CUR_RX_DESC_ADDR : DMA_CUR_TX_DESC_ADDR;
  169. uint32_t addr = s->regs[reg];
  170. if (!rx && (d->ctl_stat & 0x00200000)) {
  171. s->regs[reg] = s->regs[DMA_TX_BASE_ADDR];
  172. } else if (rx && (d->buffer1_size & 0x8000)) {
  173. s->regs[reg] = s->regs[DMA_RCV_BASE_ADDR];
  174. } else {
  175. s->regs[reg] += sizeof(*d);
  176. }
  177. cpu_physical_memory_write(addr, d, sizeof(*d));
  178. }
  179. static void xgmac_enet_send(struct XgmacState *s)
  180. {
  181. struct desc bd;
  182. int frame_size;
  183. int len;
  184. uint8_t frame[8192];
  185. uint8_t *ptr;
  186. ptr = frame;
  187. frame_size = 0;
  188. while (1) {
  189. xgmac_read_desc(s, &bd, 0);
  190. if ((bd.ctl_stat & 0x80000000) == 0) {
  191. /* Run out of descriptors to transmit. */
  192. break;
  193. }
  194. len = (bd.buffer1_size & 0xfff) + (bd.buffer2_size & 0xfff);
  195. if ((bd.buffer1_size & 0xfff) > 2048) {
  196. DEBUGF_BRK("qemu:%s:ERROR...ERROR...ERROR... -- "
  197. "xgmac buffer 1 len on send > 2048 (0x%x)\n",
  198. __func__, bd.buffer1_size & 0xfff);
  199. }
  200. if ((bd.buffer2_size & 0xfff) != 0) {
  201. DEBUGF_BRK("qemu:%s:ERROR...ERROR...ERROR... -- "
  202. "xgmac buffer 2 len on send != 0 (0x%x)\n",
  203. __func__, bd.buffer2_size & 0xfff);
  204. }
  205. if (len >= sizeof(frame)) {
  206. DEBUGF_BRK("qemu:%s: buffer overflow %d read into %zu "
  207. "buffer\n" , __func__, len, sizeof(frame));
  208. DEBUGF_BRK("qemu:%s: buffer1.size=%d; buffer2.size=%d\n",
  209. __func__, bd.buffer1_size, bd.buffer2_size);
  210. }
  211. cpu_physical_memory_read(bd.buffer1_addr, ptr, len);
  212. ptr += len;
  213. frame_size += len;
  214. if (bd.ctl_stat & 0x20000000) {
  215. /* Last buffer in frame. */
  216. qemu_send_packet(&s->nic->nc, frame, len);
  217. ptr = frame;
  218. frame_size = 0;
  219. s->regs[DMA_STATUS] |= DMA_STATUS_TI | DMA_STATUS_NIS;
  220. }
  221. bd.ctl_stat &= ~0x80000000;
  222. /* Write back the modified descriptor. */
  223. xgmac_write_desc(s, &bd, 0);
  224. }
  225. }
  226. static void enet_update_irq(struct XgmacState *s)
  227. {
  228. int stat = s->regs[DMA_STATUS] & s->regs[DMA_INTR_ENA];
  229. qemu_set_irq(s->sbd_irq, !!stat);
  230. }
  231. static uint64_t enet_read(void *opaque, target_phys_addr_t addr, unsigned size)
  232. {
  233. struct XgmacState *s = opaque;
  234. uint64_t r = 0;
  235. addr >>= 2;
  236. switch (addr) {
  237. case XGMAC_VERSION:
  238. r = 0x1012;
  239. break;
  240. default:
  241. if (addr < ARRAY_SIZE(s->regs)) {
  242. r = s->regs[addr];
  243. }
  244. break;
  245. }
  246. return r;
  247. }
  248. static void enet_write(void *opaque, target_phys_addr_t addr,
  249. uint64_t value, unsigned size)
  250. {
  251. struct XgmacState *s = opaque;
  252. addr >>= 2;
  253. switch (addr) {
  254. case DMA_BUS_MODE:
  255. s->regs[DMA_BUS_MODE] = value & ~0x1;
  256. break;
  257. case DMA_XMT_POLL_DEMAND:
  258. xgmac_enet_send(s);
  259. break;
  260. case DMA_STATUS:
  261. s->regs[DMA_STATUS] = s->regs[DMA_STATUS] & ~value;
  262. break;
  263. case DMA_RCV_BASE_ADDR:
  264. s->regs[DMA_RCV_BASE_ADDR] = s->regs[DMA_CUR_RX_DESC_ADDR] = value;
  265. break;
  266. case DMA_TX_BASE_ADDR:
  267. s->regs[DMA_TX_BASE_ADDR] = s->regs[DMA_CUR_TX_DESC_ADDR] = value;
  268. break;
  269. default:
  270. if (addr < ARRAY_SIZE(s->regs)) {
  271. s->regs[addr] = value;
  272. }
  273. break;
  274. }
  275. enet_update_irq(s);
  276. }
  277. static const MemoryRegionOps enet_mem_ops = {
  278. .read = enet_read,
  279. .write = enet_write,
  280. .endianness = DEVICE_LITTLE_ENDIAN,
  281. };
  282. static int eth_can_rx(NetClientState *nc)
  283. {
  284. struct XgmacState *s = DO_UPCAST(NICState, nc, nc)->opaque;
  285. /* RX enabled? */
  286. return s->regs[DMA_CONTROL] & DMA_CONTROL_SR;
  287. }
  288. static ssize_t eth_rx(NetClientState *nc, const uint8_t *buf, size_t size)
  289. {
  290. struct XgmacState *s = DO_UPCAST(NICState, nc, nc)->opaque;
  291. static const unsigned char sa_bcast[6] = {0xff, 0xff, 0xff,
  292. 0xff, 0xff, 0xff};
  293. int unicast, broadcast, multicast;
  294. struct desc bd;
  295. ssize_t ret;
  296. unicast = ~buf[0] & 0x1;
  297. broadcast = memcmp(buf, sa_bcast, 6) == 0;
  298. multicast = !unicast && !broadcast;
  299. if (size < 12) {
  300. s->regs[DMA_STATUS] |= DMA_STATUS_RI | DMA_STATUS_NIS;
  301. ret = -1;
  302. goto out;
  303. }
  304. xgmac_read_desc(s, &bd, 1);
  305. if ((bd.ctl_stat & 0x80000000) == 0) {
  306. s->regs[DMA_STATUS] |= DMA_STATUS_RU | DMA_STATUS_AIS;
  307. ret = size;
  308. goto out;
  309. }
  310. cpu_physical_memory_write(bd.buffer1_addr, buf, size);
  311. /* Add in the 4 bytes for crc (the real hw returns length incl crc) */
  312. size += 4;
  313. bd.ctl_stat = (size << 16) | 0x300;
  314. xgmac_write_desc(s, &bd, 1);
  315. s->stats.rx_bytes += size;
  316. s->stats.rx++;
  317. if (multicast) {
  318. s->stats.rx_mcast++;
  319. } else if (broadcast) {
  320. s->stats.rx_bcast++;
  321. }
  322. s->regs[DMA_STATUS] |= DMA_STATUS_RI | DMA_STATUS_NIS;
  323. ret = size;
  324. out:
  325. enet_update_irq(s);
  326. return ret;
  327. }
  328. static void eth_cleanup(NetClientState *nc)
  329. {
  330. struct XgmacState *s = DO_UPCAST(NICState, nc, nc)->opaque;
  331. s->nic = NULL;
  332. }
  333. static NetClientInfo net_xgmac_enet_info = {
  334. .type = NET_CLIENT_OPTIONS_KIND_NIC,
  335. .size = sizeof(NICState),
  336. .can_receive = eth_can_rx,
  337. .receive = eth_rx,
  338. .cleanup = eth_cleanup,
  339. };
  340. static int xgmac_enet_init(SysBusDevice *dev)
  341. {
  342. struct XgmacState *s = FROM_SYSBUS(typeof(*s), dev);
  343. memory_region_init_io(&s->iomem, &enet_mem_ops, s, "xgmac", 0x1000);
  344. sysbus_init_mmio(dev, &s->iomem);
  345. sysbus_init_irq(dev, &s->sbd_irq);
  346. sysbus_init_irq(dev, &s->pmt_irq);
  347. sysbus_init_irq(dev, &s->mci_irq);
  348. qemu_macaddr_default_if_unset(&s->conf.macaddr);
  349. s->nic = qemu_new_nic(&net_xgmac_enet_info, &s->conf,
  350. object_get_typename(OBJECT(dev)), dev->qdev.id, s);
  351. qemu_format_nic_info_str(&s->nic->nc, s->conf.macaddr.a);
  352. s->regs[XGMAC_ADDR_HIGH(0)] = (s->conf.macaddr.a[5] << 8) |
  353. s->conf.macaddr.a[4];
  354. s->regs[XGMAC_ADDR_LOW(0)] = (s->conf.macaddr.a[3] << 24) |
  355. (s->conf.macaddr.a[2] << 16) |
  356. (s->conf.macaddr.a[1] << 8) |
  357. s->conf.macaddr.a[0];
  358. return 0;
  359. }
  360. static Property xgmac_properties[] = {
  361. DEFINE_NIC_PROPERTIES(struct XgmacState, conf),
  362. DEFINE_PROP_END_OF_LIST(),
  363. };
  364. static void xgmac_enet_class_init(ObjectClass *klass, void *data)
  365. {
  366. SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass);
  367. DeviceClass *dc = DEVICE_CLASS(klass);
  368. sbc->init = xgmac_enet_init;
  369. dc->vmsd = &vmstate_xgmac;
  370. dc->props = xgmac_properties;
  371. }
  372. static TypeInfo xgmac_enet_info = {
  373. .name = "xgmac",
  374. .parent = TYPE_SYS_BUS_DEVICE,
  375. .instance_size = sizeof(struct XgmacState),
  376. .class_init = xgmac_enet_class_init,
  377. };
  378. static void xgmac_enet_register_types(void)
  379. {
  380. type_register_static(&xgmac_enet_info);
  381. }
  382. type_init(xgmac_enet_register_types)