ag71xx.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. /*
  2. * Atheros AR71xx built-in ethernet mac driver
  3. *
  4. * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
  5. * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
  6. *
  7. * Based on Atheros' AG7100 driver
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License version 2 as published
  11. * by the Free Software Foundation.
  12. */
  13. #ifndef __AG71XX_H
  14. #define __AG71XX_H
  15. #include <linux/kernel.h>
  16. #include <linux/version.h>
  17. #include <linux/module.h>
  18. #include <linux/init.h>
  19. #include <linux/types.h>
  20. #include <linux/random.h>
  21. #include <linux/spinlock.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/ethtool.h>
  25. #include <linux/etherdevice.h>
  26. #include <linux/if_vlan.h>
  27. #include <linux/phy.h>
  28. #include <linux/skbuff.h>
  29. #include <linux/dma-mapping.h>
  30. #include <linux/workqueue.h>
  31. #include <linux/bitops.h>
  32. #include <asm/mach-ath79/ar71xx_regs.h>
  33. #include <asm/mach-ath79/ath79.h>
  34. #include <asm/mach-ath79/ag71xx_platform.h>
  35. #define AG71XX_DRV_NAME "ag71xx"
  36. #define AG71XX_DRV_VERSION "0.5.35"
  37. #define AG71XX_NAPI_WEIGHT 64
  38. #define AG71XX_OOM_REFILL (1 + HZ/10)
  39. #define AG71XX_INT_ERR (AG71XX_INT_RX_BE | AG71XX_INT_TX_BE)
  40. #define AG71XX_INT_TX (AG71XX_INT_TX_PS)
  41. #define AG71XX_INT_RX (AG71XX_INT_RX_PR | AG71XX_INT_RX_OF)
  42. #define AG71XX_INT_POLL (AG71XX_INT_RX | AG71XX_INT_TX)
  43. #define AG71XX_INT_INIT (AG71XX_INT_ERR | AG71XX_INT_POLL)
  44. #define AG71XX_TX_MTU_LEN 1540
  45. #define AG71XX_TX_RING_SPLIT 512
  46. #define AG71XX_TX_RING_DS_PER_PKT DIV_ROUND_UP(AG71XX_TX_MTU_LEN, \
  47. AG71XX_TX_RING_SPLIT)
  48. #define AG71XX_TX_RING_SIZE_DEFAULT 128
  49. #define AG71XX_RX_RING_SIZE_DEFAULT 256
  50. #define AG71XX_TX_RING_SIZE_MAX 128
  51. #define AG71XX_RX_RING_SIZE_MAX 256
  52. #ifdef CONFIG_AG71XX_DEBUG
  53. #define DBG(fmt, args...) pr_debug(fmt, ## args)
  54. #else
  55. #define DBG(fmt, args...) do {} while (0)
  56. #endif
  57. #define ag71xx_assert(_cond) \
  58. do { \
  59. if (_cond) \
  60. break; \
  61. printk("%s,%d: assertion failed\n", __FILE__, __LINE__); \
  62. BUG(); \
  63. } while (0)
  64. struct ag71xx_desc {
  65. u32 data;
  66. u32 ctrl;
  67. #define DESC_EMPTY BIT(31)
  68. #define DESC_MORE BIT(24)
  69. #define DESC_PKTLEN_M 0xfff
  70. u32 next;
  71. u32 pad;
  72. } __attribute__((aligned(4)));
  73. #define AG71XX_DESC_SIZE roundup(sizeof(struct ag71xx_desc), \
  74. L1_CACHE_BYTES)
  75. struct ag71xx_buf {
  76. union {
  77. struct sk_buff *skb;
  78. void *rx_buf;
  79. };
  80. union {
  81. dma_addr_t dma_addr;
  82. unsigned long timestamp;
  83. };
  84. unsigned int len;
  85. };
  86. struct ag71xx_ring {
  87. struct ag71xx_buf *buf;
  88. u8 *descs_cpu;
  89. dma_addr_t descs_dma;
  90. u16 desc_split;
  91. u16 order;
  92. unsigned int curr;
  93. unsigned int dirty;
  94. };
  95. struct ag71xx_mdio {
  96. struct mii_bus *mii_bus;
  97. int mii_irq[PHY_MAX_ADDR];
  98. void __iomem *mdio_base;
  99. struct ag71xx_mdio_platform_data *pdata;
  100. };
  101. struct ag71xx_int_stats {
  102. unsigned long rx_pr;
  103. unsigned long rx_be;
  104. unsigned long rx_of;
  105. unsigned long tx_ps;
  106. unsigned long tx_be;
  107. unsigned long tx_ur;
  108. unsigned long total;
  109. };
  110. struct ag71xx_napi_stats {
  111. unsigned long napi_calls;
  112. unsigned long rx_count;
  113. unsigned long rx_packets;
  114. unsigned long rx_packets_max;
  115. unsigned long tx_count;
  116. unsigned long tx_packets;
  117. unsigned long tx_packets_max;
  118. unsigned long rx[AG71XX_NAPI_WEIGHT + 1];
  119. unsigned long tx[AG71XX_NAPI_WEIGHT + 1];
  120. };
  121. struct ag71xx_debug {
  122. struct dentry *debugfs_dir;
  123. struct ag71xx_int_stats int_stats;
  124. struct ag71xx_napi_stats napi_stats;
  125. };
  126. struct ag71xx {
  127. void __iomem *mac_base;
  128. spinlock_t lock;
  129. struct platform_device *pdev;
  130. struct net_device *dev;
  131. struct napi_struct napi;
  132. u32 msg_enable;
  133. struct ag71xx_desc *stop_desc;
  134. dma_addr_t stop_desc_dma;
  135. struct ag71xx_ring rx_ring;
  136. struct ag71xx_ring tx_ring;
  137. struct mii_bus *mii_bus;
  138. struct phy_device *phy_dev;
  139. void *phy_priv;
  140. unsigned int link;
  141. unsigned int speed;
  142. int duplex;
  143. unsigned int max_frame_len;
  144. unsigned int desc_pktlen_mask;
  145. unsigned int rx_buf_size;
  146. struct work_struct restart_work;
  147. struct delayed_work link_work;
  148. struct timer_list oom_timer;
  149. #ifdef CONFIG_AG71XX_DEBUG_FS
  150. struct ag71xx_debug debug;
  151. #endif
  152. };
  153. extern struct ethtool_ops ag71xx_ethtool_ops;
  154. void ag71xx_link_adjust(struct ag71xx *ag);
  155. int ag71xx_mdio_driver_init(void) __init;
  156. void ag71xx_mdio_driver_exit(void);
  157. int ag71xx_phy_connect(struct ag71xx *ag);
  158. void ag71xx_phy_disconnect(struct ag71xx *ag);
  159. void ag71xx_phy_start(struct ag71xx *ag);
  160. void ag71xx_phy_stop(struct ag71xx *ag);
  161. static inline struct ag71xx_platform_data *ag71xx_get_pdata(struct ag71xx *ag)
  162. {
  163. return ag->pdev->dev.platform_data;
  164. }
  165. static inline int ag71xx_desc_empty(struct ag71xx_desc *desc)
  166. {
  167. return (desc->ctrl & DESC_EMPTY) != 0;
  168. }
  169. static inline struct ag71xx_desc *
  170. ag71xx_ring_desc(struct ag71xx_ring *ring, int idx)
  171. {
  172. return (struct ag71xx_desc *) &ring->descs_cpu[idx * AG71XX_DESC_SIZE];
  173. }
  174. static inline int
  175. ag71xx_ring_size_order(int size)
  176. {
  177. return fls(size - 1);
  178. }
  179. /* Register offsets */
  180. #define AG71XX_REG_MAC_CFG1 0x0000
  181. #define AG71XX_REG_MAC_CFG2 0x0004
  182. #define AG71XX_REG_MAC_IPG 0x0008
  183. #define AG71XX_REG_MAC_HDX 0x000c
  184. #define AG71XX_REG_MAC_MFL 0x0010
  185. #define AG71XX_REG_MII_CFG 0x0020
  186. #define AG71XX_REG_MII_CMD 0x0024
  187. #define AG71XX_REG_MII_ADDR 0x0028
  188. #define AG71XX_REG_MII_CTRL 0x002c
  189. #define AG71XX_REG_MII_STATUS 0x0030
  190. #define AG71XX_REG_MII_IND 0x0034
  191. #define AG71XX_REG_MAC_IFCTL 0x0038
  192. #define AG71XX_REG_MAC_ADDR1 0x0040
  193. #define AG71XX_REG_MAC_ADDR2 0x0044
  194. #define AG71XX_REG_FIFO_CFG0 0x0048
  195. #define AG71XX_REG_FIFO_CFG1 0x004c
  196. #define AG71XX_REG_FIFO_CFG2 0x0050
  197. #define AG71XX_REG_FIFO_CFG3 0x0054
  198. #define AG71XX_REG_FIFO_CFG4 0x0058
  199. #define AG71XX_REG_FIFO_CFG5 0x005c
  200. #define AG71XX_REG_FIFO_RAM0 0x0060
  201. #define AG71XX_REG_FIFO_RAM1 0x0064
  202. #define AG71XX_REG_FIFO_RAM2 0x0068
  203. #define AG71XX_REG_FIFO_RAM3 0x006c
  204. #define AG71XX_REG_FIFO_RAM4 0x0070
  205. #define AG71XX_REG_FIFO_RAM5 0x0074
  206. #define AG71XX_REG_FIFO_RAM6 0x0078
  207. #define AG71XX_REG_FIFO_RAM7 0x007c
  208. #define AG71XX_REG_TX_CTRL 0x0180
  209. #define AG71XX_REG_TX_DESC 0x0184
  210. #define AG71XX_REG_TX_STATUS 0x0188
  211. #define AG71XX_REG_RX_CTRL 0x018c
  212. #define AG71XX_REG_RX_DESC 0x0190
  213. #define AG71XX_REG_RX_STATUS 0x0194
  214. #define AG71XX_REG_INT_ENABLE 0x0198
  215. #define AG71XX_REG_INT_STATUS 0x019c
  216. #define AG71XX_REG_FIFO_DEPTH 0x01a8
  217. #define AG71XX_REG_RX_SM 0x01b0
  218. #define AG71XX_REG_TX_SM 0x01b4
  219. #define MAC_CFG1_TXE BIT(0) /* Tx Enable */
  220. #define MAC_CFG1_STX BIT(1) /* Synchronize Tx Enable */
  221. #define MAC_CFG1_RXE BIT(2) /* Rx Enable */
  222. #define MAC_CFG1_SRX BIT(3) /* Synchronize Rx Enable */
  223. #define MAC_CFG1_TFC BIT(4) /* Tx Flow Control Enable */
  224. #define MAC_CFG1_RFC BIT(5) /* Rx Flow Control Enable */
  225. #define MAC_CFG1_LB BIT(8) /* Loopback mode */
  226. #define MAC_CFG1_SR BIT(31) /* Soft Reset */
  227. #define MAC_CFG2_FDX BIT(0)
  228. #define MAC_CFG2_CRC_EN BIT(1)
  229. #define MAC_CFG2_PAD_CRC_EN BIT(2)
  230. #define MAC_CFG2_LEN_CHECK BIT(4)
  231. #define MAC_CFG2_HUGE_FRAME_EN BIT(5)
  232. #define MAC_CFG2_IF_1000 BIT(9)
  233. #define MAC_CFG2_IF_10_100 BIT(8)
  234. #define FIFO_CFG0_WTM BIT(0) /* Watermark Module */
  235. #define FIFO_CFG0_RXS BIT(1) /* Rx System Module */
  236. #define FIFO_CFG0_RXF BIT(2) /* Rx Fabric Module */
  237. #define FIFO_CFG0_TXS BIT(3) /* Tx System Module */
  238. #define FIFO_CFG0_TXF BIT(4) /* Tx Fabric Module */
  239. #define FIFO_CFG0_ALL (FIFO_CFG0_WTM | FIFO_CFG0_RXS | FIFO_CFG0_RXF \
  240. | FIFO_CFG0_TXS | FIFO_CFG0_TXF)
  241. #define FIFO_CFG0_ENABLE_SHIFT 8
  242. #define FIFO_CFG4_DE BIT(0) /* Drop Event */
  243. #define FIFO_CFG4_DV BIT(1) /* RX_DV Event */
  244. #define FIFO_CFG4_FC BIT(2) /* False Carrier */
  245. #define FIFO_CFG4_CE BIT(3) /* Code Error */
  246. #define FIFO_CFG4_CR BIT(4) /* CRC error */
  247. #define FIFO_CFG4_LM BIT(5) /* Length Mismatch */
  248. #define FIFO_CFG4_LO BIT(6) /* Length out of range */
  249. #define FIFO_CFG4_OK BIT(7) /* Packet is OK */
  250. #define FIFO_CFG4_MC BIT(8) /* Multicast Packet */
  251. #define FIFO_CFG4_BC BIT(9) /* Broadcast Packet */
  252. #define FIFO_CFG4_DR BIT(10) /* Dribble */
  253. #define FIFO_CFG4_LE BIT(11) /* Long Event */
  254. #define FIFO_CFG4_CF BIT(12) /* Control Frame */
  255. #define FIFO_CFG4_PF BIT(13) /* Pause Frame */
  256. #define FIFO_CFG4_UO BIT(14) /* Unsupported Opcode */
  257. #define FIFO_CFG4_VT BIT(15) /* VLAN tag detected */
  258. #define FIFO_CFG4_FT BIT(16) /* Frame Truncated */
  259. #define FIFO_CFG4_UC BIT(17) /* Unicast Packet */
  260. #define FIFO_CFG5_DE BIT(0) /* Drop Event */
  261. #define FIFO_CFG5_DV BIT(1) /* RX_DV Event */
  262. #define FIFO_CFG5_FC BIT(2) /* False Carrier */
  263. #define FIFO_CFG5_CE BIT(3) /* Code Error */
  264. #define FIFO_CFG5_LM BIT(4) /* Length Mismatch */
  265. #define FIFO_CFG5_LO BIT(5) /* Length Out of Range */
  266. #define FIFO_CFG5_OK BIT(6) /* Packet is OK */
  267. #define FIFO_CFG5_MC BIT(7) /* Multicast Packet */
  268. #define FIFO_CFG5_BC BIT(8) /* Broadcast Packet */
  269. #define FIFO_CFG5_DR BIT(9) /* Dribble */
  270. #define FIFO_CFG5_CF BIT(10) /* Control Frame */
  271. #define FIFO_CFG5_PF BIT(11) /* Pause Frame */
  272. #define FIFO_CFG5_UO BIT(12) /* Unsupported Opcode */
  273. #define FIFO_CFG5_VT BIT(13) /* VLAN tag detected */
  274. #define FIFO_CFG5_LE BIT(14) /* Long Event */
  275. #define FIFO_CFG5_FT BIT(15) /* Frame Truncated */
  276. #define FIFO_CFG5_16 BIT(16) /* unknown */
  277. #define FIFO_CFG5_17 BIT(17) /* unknown */
  278. #define FIFO_CFG5_SF BIT(18) /* Short Frame */
  279. #define FIFO_CFG5_BM BIT(19) /* Byte Mode */
  280. #define AG71XX_INT_TX_PS BIT(0)
  281. #define AG71XX_INT_TX_UR BIT(1)
  282. #define AG71XX_INT_TX_BE BIT(3)
  283. #define AG71XX_INT_RX_PR BIT(4)
  284. #define AG71XX_INT_RX_OF BIT(6)
  285. #define AG71XX_INT_RX_BE BIT(7)
  286. #define MAC_IFCTL_SPEED BIT(16)
  287. #define MII_CFG_CLK_DIV_4 0
  288. #define MII_CFG_CLK_DIV_6 2
  289. #define MII_CFG_CLK_DIV_8 3
  290. #define MII_CFG_CLK_DIV_10 4
  291. #define MII_CFG_CLK_DIV_14 5
  292. #define MII_CFG_CLK_DIV_20 6
  293. #define MII_CFG_CLK_DIV_28 7
  294. #define MII_CFG_CLK_DIV_34 8
  295. #define MII_CFG_CLK_DIV_42 9
  296. #define MII_CFG_CLK_DIV_50 10
  297. #define MII_CFG_CLK_DIV_58 11
  298. #define MII_CFG_CLK_DIV_66 12
  299. #define MII_CFG_CLK_DIV_74 13
  300. #define MII_CFG_CLK_DIV_82 14
  301. #define MII_CFG_CLK_DIV_98 15
  302. #define MII_CFG_RESET BIT(31)
  303. #define MII_CMD_WRITE 0x0
  304. #define MII_CMD_READ 0x1
  305. #define MII_ADDR_SHIFT 8
  306. #define MII_IND_BUSY BIT(0)
  307. #define MII_IND_INVALID BIT(2)
  308. #define TX_CTRL_TXE BIT(0) /* Tx Enable */
  309. #define TX_STATUS_PS BIT(0) /* Packet Sent */
  310. #define TX_STATUS_UR BIT(1) /* Tx Underrun */
  311. #define TX_STATUS_BE BIT(3) /* Bus Error */
  312. #define RX_CTRL_RXE BIT(0) /* Rx Enable */
  313. #define RX_STATUS_PR BIT(0) /* Packet Received */
  314. #define RX_STATUS_OF BIT(2) /* Rx Overflow */
  315. #define RX_STATUS_BE BIT(3) /* Bus Error */
  316. static inline void ag71xx_check_reg_offset(struct ag71xx *ag, unsigned reg)
  317. {
  318. switch (reg) {
  319. case AG71XX_REG_MAC_CFG1 ... AG71XX_REG_MAC_MFL:
  320. case AG71XX_REG_MAC_IFCTL ... AG71XX_REG_TX_SM:
  321. case AG71XX_REG_MII_CFG:
  322. break;
  323. default:
  324. BUG();
  325. }
  326. }
  327. static inline void ag71xx_wr(struct ag71xx *ag, unsigned reg, u32 value)
  328. {
  329. ag71xx_check_reg_offset(ag, reg);
  330. __raw_writel(value, ag->mac_base + reg);
  331. /* flush write */
  332. (void) __raw_readl(ag->mac_base + reg);
  333. }
  334. static inline u32 ag71xx_rr(struct ag71xx *ag, unsigned reg)
  335. {
  336. ag71xx_check_reg_offset(ag, reg);
  337. return __raw_readl(ag->mac_base + reg);
  338. }
  339. static inline void ag71xx_sb(struct ag71xx *ag, unsigned reg, u32 mask)
  340. {
  341. void __iomem *r;
  342. ag71xx_check_reg_offset(ag, reg);
  343. r = ag->mac_base + reg;
  344. __raw_writel(__raw_readl(r) | mask, r);
  345. /* flush write */
  346. (void)__raw_readl(r);
  347. }
  348. static inline void ag71xx_cb(struct ag71xx *ag, unsigned reg, u32 mask)
  349. {
  350. void __iomem *r;
  351. ag71xx_check_reg_offset(ag, reg);
  352. r = ag->mac_base + reg;
  353. __raw_writel(__raw_readl(r) & ~mask, r);
  354. /* flush write */
  355. (void) __raw_readl(r);
  356. }
  357. static inline void ag71xx_int_enable(struct ag71xx *ag, u32 ints)
  358. {
  359. ag71xx_sb(ag, AG71XX_REG_INT_ENABLE, ints);
  360. }
  361. static inline void ag71xx_int_disable(struct ag71xx *ag, u32 ints)
  362. {
  363. ag71xx_cb(ag, AG71XX_REG_INT_ENABLE, ints);
  364. }
  365. #ifdef CONFIG_AG71XX_AR8216_SUPPORT
  366. void ag71xx_add_ar8216_header(struct ag71xx *ag, struct sk_buff *skb);
  367. int ag71xx_remove_ar8216_header(struct ag71xx *ag, struct sk_buff *skb,
  368. int pktlen);
  369. static inline int ag71xx_has_ar8216(struct ag71xx *ag)
  370. {
  371. return ag71xx_get_pdata(ag)->has_ar8216;
  372. }
  373. #else
  374. static inline void ag71xx_add_ar8216_header(struct ag71xx *ag,
  375. struct sk_buff *skb)
  376. {
  377. }
  378. static inline int ag71xx_remove_ar8216_header(struct ag71xx *ag,
  379. struct sk_buff *skb,
  380. int pktlen)
  381. {
  382. return 0;
  383. }
  384. static inline int ag71xx_has_ar8216(struct ag71xx *ag)
  385. {
  386. return 0;
  387. }
  388. #endif
  389. #ifdef CONFIG_AG71XX_DEBUG_FS
  390. int ag71xx_debugfs_root_init(void);
  391. void ag71xx_debugfs_root_exit(void);
  392. int ag71xx_debugfs_init(struct ag71xx *ag);
  393. void ag71xx_debugfs_exit(struct ag71xx *ag);
  394. void ag71xx_debugfs_update_int_stats(struct ag71xx *ag, u32 status);
  395. void ag71xx_debugfs_update_napi_stats(struct ag71xx *ag, int rx, int tx);
  396. #else
  397. static inline int ag71xx_debugfs_root_init(void) { return 0; }
  398. static inline void ag71xx_debugfs_root_exit(void) {}
  399. static inline int ag71xx_debugfs_init(struct ag71xx *ag) { return 0; }
  400. static inline void ag71xx_debugfs_exit(struct ag71xx *ag) {}
  401. static inline void ag71xx_debugfs_update_int_stats(struct ag71xx *ag,
  402. u32 status) {}
  403. static inline void ag71xx_debugfs_update_napi_stats(struct ag71xx *ag,
  404. int rx, int tx) {}
  405. #endif /* CONFIG_AG71XX_DEBUG_FS */
  406. void ag71xx_ar7240_start(struct ag71xx *ag);
  407. void ag71xx_ar7240_stop(struct ag71xx *ag);
  408. int ag71xx_ar7240_init(struct ag71xx *ag);
  409. void ag71xx_ar7240_cleanup(struct ag71xx *ag);
  410. int ag71xx_mdio_mii_read(struct ag71xx_mdio *am, int addr, int reg);
  411. void ag71xx_mdio_mii_write(struct ag71xx_mdio *am, int addr, int reg, u16 val);
  412. u16 ar7240sw_phy_read(struct mii_bus *mii, unsigned phy_addr,
  413. unsigned reg_addr);
  414. int ar7240sw_phy_write(struct mii_bus *mii, unsigned phy_addr,
  415. unsigned reg_addr, u16 reg_val);
  416. #endif /* _AG71XX_H */