1
0

ag71xx.h 14 KB

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