sunxi_emac.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * sunxi_emac.c -- Allwinner A10 ethernet driver
  4. *
  5. * (C) Copyright 2012, Stefan Roese <sr@denx.de>
  6. */
  7. #include <common.h>
  8. #include <dm.h>
  9. #include <linux/err.h>
  10. #include <malloc.h>
  11. #include <miiphy.h>
  12. #include <net.h>
  13. #include <asm/io.h>
  14. #include <asm/arch/clock.h>
  15. #include <asm/arch/gpio.h>
  16. /* EMAC register */
  17. struct emac_regs {
  18. u32 ctl; /* 0x00 */
  19. u32 tx_mode; /* 0x04 */
  20. u32 tx_flow; /* 0x08 */
  21. u32 tx_ctl0; /* 0x0c */
  22. u32 tx_ctl1; /* 0x10 */
  23. u32 tx_ins; /* 0x14 */
  24. u32 tx_pl0; /* 0x18 */
  25. u32 tx_pl1; /* 0x1c */
  26. u32 tx_sta; /* 0x20 */
  27. u32 tx_io_data; /* 0x24 */
  28. u32 tx_io_data1;/* 0x28 */
  29. u32 tx_tsvl0; /* 0x2c */
  30. u32 tx_tsvh0; /* 0x30 */
  31. u32 tx_tsvl1; /* 0x34 */
  32. u32 tx_tsvh1; /* 0x38 */
  33. u32 rx_ctl; /* 0x3c */
  34. u32 rx_hash0; /* 0x40 */
  35. u32 rx_hash1; /* 0x44 */
  36. u32 rx_sta; /* 0x48 */
  37. u32 rx_io_data; /* 0x4c */
  38. u32 rx_fbc; /* 0x50 */
  39. u32 int_ctl; /* 0x54 */
  40. u32 int_sta; /* 0x58 */
  41. u32 mac_ctl0; /* 0x5c */
  42. u32 mac_ctl1; /* 0x60 */
  43. u32 mac_ipgt; /* 0x64 */
  44. u32 mac_ipgr; /* 0x68 */
  45. u32 mac_clrt; /* 0x6c */
  46. u32 mac_maxf; /* 0x70 */
  47. u32 mac_supp; /* 0x74 */
  48. u32 mac_test; /* 0x78 */
  49. u32 mac_mcfg; /* 0x7c */
  50. u32 mac_mcmd; /* 0x80 */
  51. u32 mac_madr; /* 0x84 */
  52. u32 mac_mwtd; /* 0x88 */
  53. u32 mac_mrdd; /* 0x8c */
  54. u32 mac_mind; /* 0x90 */
  55. u32 mac_ssrr; /* 0x94 */
  56. u32 mac_a0; /* 0x98 */
  57. u32 mac_a1; /* 0x9c */
  58. };
  59. /* SRAMC register */
  60. struct sunxi_sramc_regs {
  61. u32 ctrl0;
  62. u32 ctrl1;
  63. };
  64. /* 0: Disable 1: Aborted frame enable(default) */
  65. #define EMAC_TX_AB_M (0x1 << 0)
  66. /* 0: CPU 1: DMA(default) */
  67. #define EMAC_TX_TM (0x1 << 1)
  68. #define EMAC_TX_SETUP (0)
  69. /* 0: DRQ asserted 1: DRQ automatically(default) */
  70. #define EMAC_RX_DRQ_MODE (0x1 << 1)
  71. /* 0: CPU 1: DMA(default) */
  72. #define EMAC_RX_TM (0x1 << 2)
  73. /* 0: Normal(default) 1: Pass all Frames */
  74. #define EMAC_RX_PA (0x1 << 4)
  75. /* 0: Normal(default) 1: Pass Control Frames */
  76. #define EMAC_RX_PCF (0x1 << 5)
  77. /* 0: Normal(default) 1: Pass Frames with CRC Error */
  78. #define EMAC_RX_PCRCE (0x1 << 6)
  79. /* 0: Normal(default) 1: Pass Frames with Length Error */
  80. #define EMAC_RX_PLE (0x1 << 7)
  81. /* 0: Normal 1: Pass Frames length out of range(default) */
  82. #define EMAC_RX_POR (0x1 << 8)
  83. /* 0: Not accept 1: Accept unicast Packets(default) */
  84. #define EMAC_RX_UCAD (0x1 << 16)
  85. /* 0: Normal(default) 1: DA Filtering */
  86. #define EMAC_RX_DAF (0x1 << 17)
  87. /* 0: Not accept 1: Accept multicast Packets(default) */
  88. #define EMAC_RX_MCO (0x1 << 20)
  89. /* 0: Disable(default) 1: Enable Hash filter */
  90. #define EMAC_RX_MHF (0x1 << 21)
  91. /* 0: Not accept 1: Accept Broadcast Packets(default) */
  92. #define EMAC_RX_BCO (0x1 << 22)
  93. /* 0: Disable(default) 1: Enable SA Filtering */
  94. #define EMAC_RX_SAF (0x1 << 24)
  95. /* 0: Normal(default) 1: Inverse Filtering */
  96. #define EMAC_RX_SAIF (0x1 << 25)
  97. #define EMAC_RX_SETUP (EMAC_RX_POR | EMAC_RX_UCAD | EMAC_RX_DAF | \
  98. EMAC_RX_MCO | EMAC_RX_BCO)
  99. /* 0: Disable 1: Enable Receive Flow Control(default) */
  100. #define EMAC_MAC_CTL0_RFC (0x1 << 2)
  101. /* 0: Disable 1: Enable Transmit Flow Control(default) */
  102. #define EMAC_MAC_CTL0_TFC (0x1 << 3)
  103. #define EMAC_MAC_CTL0_SETUP (EMAC_MAC_CTL0_RFC | EMAC_MAC_CTL0_TFC)
  104. /* 0: Disable 1: Enable MAC Frame Length Checking(default) */
  105. #define EMAC_MAC_CTL1_FLC (0x1 << 1)
  106. /* 0: Disable(default) 1: Enable Huge Frame */
  107. #define EMAC_MAC_CTL1_HF (0x1 << 2)
  108. /* 0: Disable(default) 1: Enable MAC Delayed CRC */
  109. #define EMAC_MAC_CTL1_DCRC (0x1 << 3)
  110. /* 0: Disable 1: Enable MAC CRC(default) */
  111. #define EMAC_MAC_CTL1_CRC (0x1 << 4)
  112. /* 0: Disable 1: Enable MAC PAD Short frames(default) */
  113. #define EMAC_MAC_CTL1_PC (0x1 << 5)
  114. /* 0: Disable(default) 1: Enable MAC PAD Short frames and append CRC */
  115. #define EMAC_MAC_CTL1_VC (0x1 << 6)
  116. /* 0: Disable(default) 1: Enable MAC auto detect Short frames */
  117. #define EMAC_MAC_CTL1_ADP (0x1 << 7)
  118. /* 0: Disable(default) 1: Enable */
  119. #define EMAC_MAC_CTL1_PRE (0x1 << 8)
  120. /* 0: Disable(default) 1: Enable */
  121. #define EMAC_MAC_CTL1_LPE (0x1 << 9)
  122. /* 0: Disable(default) 1: Enable no back off */
  123. #define EMAC_MAC_CTL1_NB (0x1 << 12)
  124. /* 0: Disable(default) 1: Enable */
  125. #define EMAC_MAC_CTL1_BNB (0x1 << 13)
  126. /* 0: Disable(default) 1: Enable */
  127. #define EMAC_MAC_CTL1_ED (0x1 << 14)
  128. #define EMAC_MAC_CTL1_SETUP (EMAC_MAC_CTL1_FLC | EMAC_MAC_CTL1_CRC | \
  129. EMAC_MAC_CTL1_PC)
  130. #define EMAC_MAC_IPGT 0x15
  131. #define EMAC_MAC_NBTB_IPG1 0xc
  132. #define EMAC_MAC_NBTB_IPG2 0x12
  133. #define EMAC_MAC_CW 0x37
  134. #define EMAC_MAC_RM 0xf
  135. #define EMAC_MAC_MFL 0x0600
  136. /* Receive status */
  137. #define EMAC_CRCERR (0x1 << 4)
  138. #define EMAC_LENERR (0x3 << 5)
  139. #define EMAC_RX_BUFSIZE 2000
  140. struct emac_eth_dev {
  141. struct emac_regs *regs;
  142. struct mii_dev *bus;
  143. struct phy_device *phydev;
  144. int link_printed;
  145. #ifdef CONFIG_DM_ETH
  146. uchar rx_buf[EMAC_RX_BUFSIZE];
  147. #endif
  148. };
  149. struct emac_rxhdr {
  150. s16 rx_len;
  151. u16 rx_status;
  152. };
  153. static void emac_inblk_32bit(void *reg, void *data, int count)
  154. {
  155. int cnt = (count + 3) >> 2;
  156. if (cnt) {
  157. u32 *buf = data;
  158. do {
  159. u32 x = readl(reg);
  160. *buf++ = x;
  161. } while (--cnt);
  162. }
  163. }
  164. static void emac_outblk_32bit(void *reg, void *data, int count)
  165. {
  166. int cnt = (count + 3) >> 2;
  167. if (cnt) {
  168. const u32 *buf = data;
  169. do {
  170. writel(*buf++, reg);
  171. } while (--cnt);
  172. }
  173. }
  174. /* Read a word from phyxcer */
  175. static int emac_mdio_read(struct mii_dev *bus, int addr, int devad, int reg)
  176. {
  177. struct emac_eth_dev *priv = bus->priv;
  178. struct emac_regs *regs = priv->regs;
  179. /* issue the phy address and reg */
  180. writel(addr << 8 | reg, &regs->mac_madr);
  181. /* pull up the phy io line */
  182. writel(0x1, &regs->mac_mcmd);
  183. /* Wait read complete */
  184. mdelay(1);
  185. /* push down the phy io line */
  186. writel(0x0, &regs->mac_mcmd);
  187. /* And read data */
  188. return readl(&regs->mac_mrdd);
  189. }
  190. /* Write a word to phyxcer */
  191. static int emac_mdio_write(struct mii_dev *bus, int addr, int devad, int reg,
  192. u16 value)
  193. {
  194. struct emac_eth_dev *priv = bus->priv;
  195. struct emac_regs *regs = priv->regs;
  196. /* issue the phy address and reg */
  197. writel(addr << 8 | reg, &regs->mac_madr);
  198. /* pull up the phy io line */
  199. writel(0x1, &regs->mac_mcmd);
  200. /* Wait write complete */
  201. mdelay(1);
  202. /* push down the phy io line */
  203. writel(0x0, &regs->mac_mcmd);
  204. /* and write data */
  205. writel(value, &regs->mac_mwtd);
  206. return 0;
  207. }
  208. static int sunxi_emac_init_phy(struct emac_eth_dev *priv, void *dev)
  209. {
  210. int ret, mask = 0xffffffff;
  211. #ifdef CONFIG_PHY_ADDR
  212. mask = 1 << CONFIG_PHY_ADDR;
  213. #endif
  214. priv->bus = mdio_alloc();
  215. if (!priv->bus) {
  216. printf("Failed to allocate MDIO bus\n");
  217. return -ENOMEM;
  218. }
  219. priv->bus->read = emac_mdio_read;
  220. priv->bus->write = emac_mdio_write;
  221. priv->bus->priv = priv;
  222. strcpy(priv->bus->name, "emac");
  223. ret = mdio_register(priv->bus);
  224. if (ret)
  225. return ret;
  226. priv->phydev = phy_find_by_mask(priv->bus, mask,
  227. PHY_INTERFACE_MODE_MII);
  228. if (!priv->phydev)
  229. return -ENODEV;
  230. phy_connect_dev(priv->phydev, dev);
  231. phy_config(priv->phydev);
  232. return 0;
  233. }
  234. static void emac_setup(struct emac_eth_dev *priv)
  235. {
  236. struct emac_regs *regs = priv->regs;
  237. u32 reg_val;
  238. /* Set up TX */
  239. writel(EMAC_TX_SETUP, &regs->tx_mode);
  240. /* Set up RX */
  241. writel(EMAC_RX_SETUP, &regs->rx_ctl);
  242. /* Set MAC */
  243. /* Set MAC CTL0 */
  244. writel(EMAC_MAC_CTL0_SETUP, &regs->mac_ctl0);
  245. /* Set MAC CTL1 */
  246. reg_val = 0;
  247. if (priv->phydev->duplex == DUPLEX_FULL)
  248. reg_val = (0x1 << 0);
  249. writel(EMAC_MAC_CTL1_SETUP | reg_val, &regs->mac_ctl1);
  250. /* Set up IPGT */
  251. writel(EMAC_MAC_IPGT, &regs->mac_ipgt);
  252. /* Set up IPGR */
  253. writel(EMAC_MAC_NBTB_IPG2 | (EMAC_MAC_NBTB_IPG1 << 8), &regs->mac_ipgr);
  254. /* Set up Collison window */
  255. writel(EMAC_MAC_RM | (EMAC_MAC_CW << 8), &regs->mac_clrt);
  256. /* Set up Max Frame Length */
  257. writel(EMAC_MAC_MFL, &regs->mac_maxf);
  258. }
  259. static void emac_reset(struct emac_eth_dev *priv)
  260. {
  261. struct emac_regs *regs = priv->regs;
  262. debug("resetting device\n");
  263. /* RESET device */
  264. writel(0, &regs->ctl);
  265. udelay(200);
  266. writel(1, &regs->ctl);
  267. udelay(200);
  268. }
  269. static int _sunxi_write_hwaddr(struct emac_eth_dev *priv, u8 *enetaddr)
  270. {
  271. struct emac_regs *regs = priv->regs;
  272. u32 enetaddr_lo, enetaddr_hi;
  273. enetaddr_lo = enetaddr[2] | (enetaddr[1] << 8) | (enetaddr[0] << 16);
  274. enetaddr_hi = enetaddr[5] | (enetaddr[4] << 8) | (enetaddr[3] << 16);
  275. writel(enetaddr_hi, &regs->mac_a0);
  276. writel(enetaddr_lo, &regs->mac_a1);
  277. return 0;
  278. }
  279. static int _sunxi_emac_eth_init(struct emac_eth_dev *priv, u8 *enetaddr)
  280. {
  281. struct emac_regs *regs = priv->regs;
  282. int ret;
  283. /* Init EMAC */
  284. /* Flush RX FIFO */
  285. setbits_le32(&regs->rx_ctl, 0x8);
  286. udelay(1);
  287. /* Init MAC */
  288. /* Soft reset MAC */
  289. clrbits_le32(&regs->mac_ctl0, 0x1 << 15);
  290. /* Clear RX counter */
  291. writel(0x0, &regs->rx_fbc);
  292. udelay(1);
  293. /* Set up EMAC */
  294. emac_setup(priv);
  295. _sunxi_write_hwaddr(priv, enetaddr);
  296. mdelay(1);
  297. emac_reset(priv);
  298. /* PHY POWER UP */
  299. ret = phy_startup(priv->phydev);
  300. if (ret) {
  301. printf("Could not initialize PHY %s\n",
  302. priv->phydev->dev->name);
  303. return ret;
  304. }
  305. /* Print link status only once */
  306. if (!priv->link_printed) {
  307. printf("ENET Speed is %d Mbps - %s duplex connection\n",
  308. priv->phydev->speed,
  309. priv->phydev->duplex ? "FULL" : "HALF");
  310. priv->link_printed = 1;
  311. }
  312. /* Set EMAC SPEED depend on PHY */
  313. if (priv->phydev->speed == SPEED_100)
  314. setbits_le32(&regs->mac_supp, 1 << 8);
  315. else
  316. clrbits_le32(&regs->mac_supp, 1 << 8);
  317. /* Set duplex depend on phy */
  318. if (priv->phydev->duplex == DUPLEX_FULL)
  319. setbits_le32(&regs->mac_ctl1, 1 << 0);
  320. else
  321. clrbits_le32(&regs->mac_ctl1, 1 << 0);
  322. /* Enable RX/TX */
  323. setbits_le32(&regs->ctl, 0x7);
  324. return 0;
  325. }
  326. static int _sunxi_emac_eth_recv(struct emac_eth_dev *priv, void *packet)
  327. {
  328. struct emac_regs *regs = priv->regs;
  329. struct emac_rxhdr rxhdr;
  330. u32 rxcount;
  331. u32 reg_val;
  332. int rx_len;
  333. int rx_status;
  334. int good_packet;
  335. /* Check packet ready or not */
  336. /* Race warning: The first packet might arrive with
  337. * the interrupts disabled, but the second will fix
  338. */
  339. rxcount = readl(&regs->rx_fbc);
  340. if (!rxcount) {
  341. /* Had one stuck? */
  342. rxcount = readl(&regs->rx_fbc);
  343. if (!rxcount)
  344. return -EAGAIN;
  345. }
  346. reg_val = readl(&regs->rx_io_data);
  347. if (reg_val != 0x0143414d) {
  348. /* Disable RX */
  349. clrbits_le32(&regs->ctl, 0x1 << 2);
  350. /* Flush RX FIFO */
  351. setbits_le32(&regs->rx_ctl, 0x1 << 3);
  352. while (readl(&regs->rx_ctl) & (0x1 << 3))
  353. ;
  354. /* Enable RX */
  355. setbits_le32(&regs->ctl, 0x1 << 2);
  356. return -EAGAIN;
  357. }
  358. /* A packet ready now
  359. * Get status/length
  360. */
  361. good_packet = 1;
  362. emac_inblk_32bit(&regs->rx_io_data, &rxhdr, sizeof(rxhdr));
  363. rx_len = rxhdr.rx_len;
  364. rx_status = rxhdr.rx_status;
  365. /* Packet Status check */
  366. if (rx_len < 0x40) {
  367. good_packet = 0;
  368. debug("RX: Bad Packet (runt)\n");
  369. }
  370. /* rx_status is identical to RSR register. */
  371. if (0 & rx_status & (EMAC_CRCERR | EMAC_LENERR)) {
  372. good_packet = 0;
  373. if (rx_status & EMAC_CRCERR)
  374. printf("crc error\n");
  375. if (rx_status & EMAC_LENERR)
  376. printf("length error\n");
  377. }
  378. /* Move data from EMAC */
  379. if (good_packet) {
  380. if (rx_len > EMAC_RX_BUFSIZE) {
  381. printf("Received packet is too big (len=%d)\n", rx_len);
  382. return -EMSGSIZE;
  383. }
  384. emac_inblk_32bit((void *)&regs->rx_io_data, packet, rx_len);
  385. return rx_len;
  386. }
  387. return -EIO; /* Bad packet */
  388. }
  389. static int _sunxi_emac_eth_send(struct emac_eth_dev *priv, void *packet,
  390. int len)
  391. {
  392. struct emac_regs *regs = priv->regs;
  393. /* Select channel 0 */
  394. writel(0, &regs->tx_ins);
  395. /* Write packet */
  396. emac_outblk_32bit((void *)&regs->tx_io_data, packet, len);
  397. /* Set TX len */
  398. writel(len, &regs->tx_pl0);
  399. /* Start translate from fifo to phy */
  400. setbits_le32(&regs->tx_ctl0, 1);
  401. return 0;
  402. }
  403. static void sunxi_emac_board_setup(struct emac_eth_dev *priv)
  404. {
  405. struct sunxi_ccm_reg *const ccm =
  406. (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
  407. struct sunxi_sramc_regs *sram =
  408. (struct sunxi_sramc_regs *)SUNXI_SRAMC_BASE;
  409. struct emac_regs *regs = priv->regs;
  410. int pin;
  411. /* Map SRAM to EMAC */
  412. setbits_le32(&sram->ctrl1, 0x5 << 2);
  413. /* Configure pin mux settings for MII Ethernet */
  414. for (pin = SUNXI_GPA(0); pin <= SUNXI_GPA(17); pin++)
  415. sunxi_gpio_set_cfgpin(pin, SUNXI_GPA_EMAC);
  416. /* Set up clock gating */
  417. setbits_le32(&ccm->ahb_gate0, 0x1 << AHB_GATE_OFFSET_EMAC);
  418. /* Set MII clock */
  419. clrsetbits_le32(&regs->mac_mcfg, 0xf << 2, 0xd << 2);
  420. }
  421. static int sunxi_emac_eth_start(struct udevice *dev)
  422. {
  423. struct eth_pdata *pdata = dev_get_platdata(dev);
  424. return _sunxi_emac_eth_init(dev->priv, pdata->enetaddr);
  425. }
  426. static int sunxi_emac_eth_send(struct udevice *dev, void *packet, int length)
  427. {
  428. struct emac_eth_dev *priv = dev_get_priv(dev);
  429. return _sunxi_emac_eth_send(priv, packet, length);
  430. }
  431. static int sunxi_emac_eth_recv(struct udevice *dev, int flags, uchar **packetp)
  432. {
  433. struct emac_eth_dev *priv = dev_get_priv(dev);
  434. int rx_len;
  435. rx_len = _sunxi_emac_eth_recv(priv, priv->rx_buf);
  436. *packetp = priv->rx_buf;
  437. return rx_len;
  438. }
  439. static void sunxi_emac_eth_stop(struct udevice *dev)
  440. {
  441. /* Nothing to do here */
  442. }
  443. static int sunxi_emac_eth_probe(struct udevice *dev)
  444. {
  445. struct eth_pdata *pdata = dev_get_platdata(dev);
  446. struct emac_eth_dev *priv = dev_get_priv(dev);
  447. priv->regs = (struct emac_regs *)pdata->iobase;
  448. sunxi_emac_board_setup(priv);
  449. return sunxi_emac_init_phy(priv, dev);
  450. }
  451. static const struct eth_ops sunxi_emac_eth_ops = {
  452. .start = sunxi_emac_eth_start,
  453. .send = sunxi_emac_eth_send,
  454. .recv = sunxi_emac_eth_recv,
  455. .stop = sunxi_emac_eth_stop,
  456. };
  457. static int sunxi_emac_eth_ofdata_to_platdata(struct udevice *dev)
  458. {
  459. struct eth_pdata *pdata = dev_get_platdata(dev);
  460. pdata->iobase = devfdt_get_addr(dev);
  461. return 0;
  462. }
  463. static const struct udevice_id sunxi_emac_eth_ids[] = {
  464. { .compatible = "allwinner,sun4i-a10-emac" },
  465. { }
  466. };
  467. U_BOOT_DRIVER(eth_sunxi_emac) = {
  468. .name = "eth_sunxi_emac",
  469. .id = UCLASS_ETH,
  470. .of_match = sunxi_emac_eth_ids,
  471. .ofdata_to_platdata = sunxi_emac_eth_ofdata_to_platdata,
  472. .probe = sunxi_emac_eth_probe,
  473. .ops = &sunxi_emac_eth_ops,
  474. .priv_auto_alloc_size = sizeof(struct emac_eth_dev),
  475. .platdata_auto_alloc_size = sizeof(struct eth_pdata),
  476. };